projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7d179ce
)
(backquote): Doc fix.
author
Richard M. Stallman
<rms@gnu.org>
Wed, 19 Jul 1995 03:42:12 +0000
(
03:42
+0000)
committer
Richard M. Stallman
<rms@gnu.org>
Wed, 19 Jul 1995 03:42:12 +0000
(
03:42
+0000)
lisp/emacs-lisp/backquote.el
patch
|
blob
|
history
diff --git
a/lisp/emacs-lisp/backquote.el
b/lisp/emacs-lisp/backquote.el
index 537c3b64e192af4be0cb1ae97c9d28bcfe4b3db1..b625fdb9794b76c556960fe597ad7a408faaa027 100644
(file)
--- a/
lisp/emacs-lisp/backquote.el
+++ b/
lisp/emacs-lisp/backquote.el
@@
-103,8
+103,8
@@
For example:
b => (ba bb bc) ; assume b has this value
`(a b c) => (a b c) ; backquote acts like quote
-`(a
(, b) c)
=> (a (ba bb bc) c) ; insert the value of b
-`(a
(,@ b) c)
=> (a ba bb bc c) ; splice in the value of b
+`(a
,b c)
=> (a (ba bb bc) c) ; insert the value of b
+`(a
,@b c)
=> (a ba bb bc c) ; splice in the value of b
Vectors work just like lists. Nested backquotes are permitted."
(cdr (backquote-process arg)))